All Questions
4 questions
3votes
2answers
384views
Check whether array is sorted recursively
I'm trying to implement isSorted method checking whether given array is sorted recursively. I've written two types, one is similar to merge sort logic, the another ...
3votes
1answer
3kviews
A recursive sort and filter for a nested object
I have a nested object which I need to filter and sort. I have a nested Object where some keys like app1 are nested inside another object. I need to be able to filter out objects with the status of ...
1vote
1answer
1kviews
Is this the best way to check sorting (in recursion) without loops?
Please let me know if there is a shorter way to do it again without any kind of loops. Recursion only. ...
5votes
3answers
2kviews
Merge Sort Implementation in Java (that seems slow...)
I decided to write my own implementation of merge sort. Here is the code: ...